/// import { Types } from "@nexys/core-list"; import { FormProps } from "../form/type"; import { ViewField } from "../view/type"; import { ListProps } from "../list/type"; import * as T from "./type"; export declare const CrudGenericWForm: (ListGeneric: (a: ListProps) => JSX.Element, DetailGeneric: T.DetailGenericType, Form: (p: FormProps) => JSX.Element) => (def: Types.Definition, viewFields: ViewField[], urlPrefix: string, crud: T.CrudRequest, extras?: T.ExtraUnit[] | undefined, options?: Partial) => () => JSX.Element; export default CrudGenericWForm;